#AllLeftMenu{
    position: fixed;
    left: 15px;
    top: 35px;
    width: 180px;
    height: 90%;
    z-index: 5000;
    display:block;
    transition: transform 0.5s ease-in-out;
    user-select: none;
    pointer-events: none;
}
#LeftMenuTitle{
    width: 160px;
    height: 35px;
    float: top;
    text-align: center;
    line-height: 40px;
    font-size: 12px;
    background-color: rgba(53, 53, 45, 1);
    border-radius: 10px 10px 0 0 ;
    border-bottom: 3px solid rgb(255, 229, 177);
    color:rgb(255, 229, 177);
    z-index: 1000;
}
#leftmenu{
    position: relative;
    overflow-y : auto;
    overflow-x: hidden;
    width: 165px;
    max-height: 50%;
    z-index: 0;
    scrollbar-width: thin;
    pointer-events: auto;
}
.leftmenuunititem{
    position: relative;
    width: 160px;
    height: 40px;
    float: top;
    background-color: rgba(66, 67, 61,0.8);
    z-index: 0;
    pointer-events: auto;
}
.leftmenuunititem:hover{
    background-color: rgb(53, 53, 45);
}

.unithighshow{
    position: absolute;
    width: 90%;
    height: 70%;
    left: calc(5% - 2px);
    top: calc(15% - 2px);
    border: 2px solid #FFE5B1;
    display:none;
    z-index: 0;
}
.itemhighshow{
    position: absolute;
    width: 90%;
    height: 70%;
    left: calc(5% - 2px);
    top: calc(15% - 2px);
    border: 2px solid #FFE5B1;
    display:none;
    z-index: 0;
}
.textshow{
    position: absolute;
    width: 100%;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 12px;
    color: #FFE5B1;
    z-index: 0;
}
#LeftMenuFoot{
    width: 160px;
    height: 35px;
    float: top;
    text-align: center;
    line-height: 40px;
    font-size: 12px;
    background-color: rgba(53, 53, 45, 1);
    border-radius:  0 0 10px 10px ;
    border-top: 3px solid rgb(255, 229, 177);
    color:rgb(255, 229, 177);
    z-index: 0;
    pointer-events: auto;
}

#SecondaryMenu{
    position: absolute;
    left: 165px;
    width: 175px;
    overflow-y : auto;
    max-height: calc(60% - 50px);
    pointer-events: auto;
}

.SecondaryMenuitem{
    position: relative;
    width: 170px;
    height: 40px;
    float: top;
    background-color: rgba(66, 67, 61,0.8);
    z-index: 0;
    pointer-events: auto;
}

.SecondaryMenuitem:hover{
    background-color: rgb(16, 17, 16);
}

::-webkit-scrollbar{
    width: 5px;
    background: rgb(167, 163, 163);
}

::-webkit-scrollbar-thumb {

    background: rgb(2, 2, 2);
    border-radius: 15px;
}

.leftmenuclose {
    transform: translateX(-200px);
}

.leftmenuopen {
    transform: translateX(0px);
}